非メンバーの辞書順序比較


template <typename T, typename Allocator> 
bool operator<( const concurrent_vector<T, Allocator>& lhs, 
                 const concurrent_vector<T, Allocator>& rhs );

戻り値: lhs が辞書順序的に rhs 以下の場合は true、それ以外は false を返します。


template <typename T, typename Allocator> 
bool operator<=( const concurrent_vector<T, Allocator>& lhs, 
                 const concurrent_vector<T, Allocator>& rhs );

戻り値: lhs が辞書順序的に rhs 以下か等しい場合は true、それ以外は false を返します。


template <typename T, typename Allocator> 
bool operator>( const concurrent_vector<T, Allocator>& lhs, 
                const concurrent_vector<T, Allocator>& rhs );

戻り値: lhs が辞書順序的に rhs より大きい場合は true、それ以外は false を返します。


template <typename T, typename Allocator> 
bool operator>=( const concurrent_vector<T, Allocator>& lhs, 
                const concurrent_vector<T, Allocator>& rhs );

戻り値: lhs が辞書順序的に rhs より大きいか等しい場合は true、それ以外は false を返します。